home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / scoobykickinit.swf / scripts / __Packages / com / ndimedia / events / EventBroadcaster.as < prev    next >
Text File  |  2007-09-28  |  547b  |  20 lines

  1. class com.ndimedia.events.EventBroadcaster
  2. {
  3.    function EventBroadcaster()
  4.    {
  5.       mx.events.EventDispatcher.initialize(this);
  6.    }
  7.    static function getInstance()
  8.    {
  9.       if(com.ndimedia.events.EventBroadcaster.eventBroadcaster == undefined)
  10.       {
  11.          com.ndimedia.events.EventBroadcaster.eventBroadcaster = new com.ndimedia.events.EventBroadcaster();
  12.       }
  13.       return com.ndimedia.events.EventBroadcaster.eventBroadcaster;
  14.    }
  15.    function broadcastEvent(event)
  16.    {
  17.       this.dispatchEvent(event);
  18.    }
  19. }
  20.